home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / i686-linux-thread-multi / IO / Handle.pm < prev    next >
Text File  |  2006-04-25  |  16KB  |  624 lines

  1. package IO::Handle;
  2.  
  3. =head1 NAME
  4.  
  5. IO::Handle - supply object methods for I/O handles
  6.  
  7. =head1 SYNOPSIS
  8.  
  9.     use IO::Handle;
  10.  
  11.     $io = new IO::Handle;
  12.     if ($io->fdopen(fileno(STDIN),"r")) {
  13.         print $io->getline;
  14.         $io->close;
  15.     }
  16.  
  17.     $io = new IO::Handle;
  18.     if ($io->fdopen(fileno(STDOUT),"w")) {
  19.         $io->print("Some text\n");
  20.     }
  21.  
  22.     # setvbuf is not available by default on Perls 5.8.0 and later.
  23.     use IO::Handle '_IOLBF';
  24.     $io->setvbuf($buffer_var, _IOLBF, 1024);
  25.  
  26.     undef $io;       # automatically closes the file if it's open
  27.  
  28.     autoflush STDOUT 1;
  29.  
  30. =head1 DESCRIPTION
  31.  
  32. C<IO::Handle> is the base class for all other IO handle classes. It is
  33. not intended that objects of C<IO::Handle> would be created directly,
  34. but instead C<IO::Handle> is inherited from by several other classes
  35. in the IO hierarchy.
  36.  
  37. If you are reading this documentation, looking for a replacement for
  38. the C<FileHandle> package, then I suggest you read the documentation
  39. for C<IO::File> too.
  40.  
  41. =head1 CONSTRUCTOR
  42.  
  43. =over 4
  44.  
  45. =item new ()
  46.  
  47. Creates a new C<IO::Handle> object.
  48.  
  49. =item new_from_fd ( FD, MODE )
  50.  
  51. Creates an C<IO::Handle> like C<new> does.
  52. It requires two parameters, which are passed to the method C<fdopen>;
  53. if the fdopen fails, the object is destroyed. Otherwise, it is returned
  54. to the caller.
  55.  
  56. =back
  57.  
  58. =head1 METHODS
  59.  
  60. See L<perlfunc> for complete descriptions of each of the following
  61. supported C<IO::Handle> methods, which are just front ends for the
  62. corresponding built-in functions:
  63.  
  64.     $io->close
  65.     $io->eof
  66.     $io->fileno
  67.     $io->format_write( [FORMAT_NAME] )
  68.     $io->getc
  69.     $io->read ( BUF, LEN, [OFFSET] )
  70.     $io->print ( ARGS )
  71.     $io->printf ( FMT, [ARGS] )
  72.     $io->stat
  73.     $io->sysread ( BUF, LEN, [OFFSET] )
  74.     $io->syswrite ( BUF, [LEN, [OFFSET]] )
  75.     $io->truncate ( LEN )
  76.  
  77. See L<perlvar> for complete descriptions of each of the following
  78. supported C<IO::Handle> methods.  All of them return the previous
  79. value of the attribute and takes an optional single argument that when
  80. given will set the value.  If no argument is given the previous value
  81. is unchanged (except for $io->autoflush will actually turn ON
  82. autoflush by default).
  83.  
  84.     $io->autoflush ( [BOOL] )                         $|
  85.     $io->format_page_number( [NUM] )                  $%
  86.     $io->format_lines_per_page( [NUM] )               $=
  87.     $io->format_lines_left( [NUM] )                   $-
  88.     $io->format_name( [STR] )                         $~
  89.     $io->format_top_name( [STR] )                     $^
  90.     $io->input_line_number( [NUM])                    $.
  91.  
  92. The following methods are not supported on a per-filehandle basis.
  93.  
  94.     IO::Handle->format_line_break_characters( [STR] ) $:
  95.     IO::Handle->format_formfeed( [STR])               $^L
  96.     IO::Handle->output_field_separator( [STR] )       $,
  97.     IO::Handle->output_record_separator( [STR] )      $\
  98.  
  99.     IO::Handle->input_record_separator( [STR] )       $/
  100.  
  101. Furthermore, for doing normal I/O you might need these:
  102.  
  103. =over 4
  104.  
  105. =item $io->fdopen ( FD, MODE )
  106.  
  107. C<fdopen> is like an ordinary C<open> except that its first parameter
  108. is not a filename but rather a file handle name, an IO::Handle object,
  109. or a file descriptor number.
  110.  
  111. =item $io->opened
  112.  
  113. Returns true if the object is currently a valid file descriptor, false
  114. otherwise.
  115.  
  116. =item $io->getline
  117.  
  118. This works like <$io> described in L<perlop/"I/O Operators">
  119. except that it's more readable and can be safely called in a
  120. list context but still returns just one line.
  121.  
  122. =item $io->getlines
  123.  
  124. This works like <$io> when called in a list context to read all
  125. the remaining lines in a file, except that it's more readable.
  126. It will also croak() if accidentally called in a scalar context.
  127.  
  128. =item $io->ungetc ( ORD )
  129.  
  130. Pushes a character with the given ordinal value back onto the given
  131. handle's input stream.  Only one character of pushback per handle is
  132. guaranteed.
  133.  
  134. =item $io->write ( BUF, LEN [, OFFSET ] )
  135.  
  136. This C<write> is like C<write> found in C, that is it is the
  137. opposite of read. The wrapper for the perl C<write> function is
  138. called C<format_write>.
  139.  
  140. =item $io->error
  141.  
  142. Returns a true value if the given handle has experienced any errors
  143. since it was opened or since the last call to C<clearerr>, or if the
  144. handle is invalid. It only returns false for a valid handle with no
  145. outstanding errors.
  146.  
  147. =item $io->clearerr
  148.  
  149. Clear the given handle's error indicator. Returns -1 if the handle is
  150. invalid, 0 otherwise.
  151.  
  152. =item $io->sync
  153.  
  154. C<sync> synchronizes a file's in-memory state  with  that  on the
  155. physical medium. C<sync> does not operate at the perlio api level, but
  156. operates on the file descriptor (similar to sysread, sysseek and
  157. systell). This means that any data held at the perlio api level will not
  158. be synchronized. To synchronize data that is buffered at the perlio api
  159. level you must use the flush method. C<sync> is not implemented on all
  160. platforms. Returns "0 but true" on success, C<undef> on error, C<undef>
  161. for an invalid handle. See L<fsync(3c)>.
  162.  
  163. =item $io->flush
  164.  
  165. C<flush> causes perl to flush any buffered data at the perlio api level.
  166. Any unread data in the buffer will be discarded, and any unwritten data
  167. will be written to the underlying file descriptor. Returns "0 but true"
  168. on success, C<undef> on error.
  169.  
  170. =item $io->printflush ( ARGS )
  171.  
  172. Turns on autoflush, print ARGS and then restores the autoflush status of the
  173. C<IO::Handle> object. Returns the return value from print.
  174.  
  175. =item $io->blocking ( [ BOOL ] )
  176.  
  177. If called with an argument C<blocking> will turn on non-blocking IO if
  178. C<BOOL> is false, and turn it off if C<BOOL> is true.
  179.  
  180. C<blocking> will return the value of the previous setting, or the
  181. current setting if C<BOOL> is not given. 
  182.  
  183. If an error occurs C<blocking> will return undef and C<$!> will be set.
  184.  
  185. =back
  186.  
  187.  
  188. If the C functions setbuf() and/or setvbuf() are available, then
  189. C<IO::Handle::setbuf> and C<IO::Handle::setvbuf> set the buffering
  190. policy for an IO::Handle.  The calling sequences for the Perl functions
  191. are the same as their C counterparts--including the constants C<_IOFBF>,
  192. C<_IOLBF>, and C<_IONBF> for setvbuf()--except that the buffer parameter
  193. specifies a scalar variable to use as a buffer. You should only
  194. change the buffer before any I/O, or immediately after calling flush.
  195.  
  196. WARNING: The IO::Handle::setvbuf() is not available by default on
  197. Perls 5.8.0 and later because setvbuf() is rather specific to using
  198. the stdio library, while Perl prefers the new perlio subsystem instead.
  199.  
  200. WARNING: A variable used as a buffer by C<setbuf> or C<setvbuf> B<must not
  201. be modified> in any way until the IO::Handle is closed or C<setbuf> or
  202. C<setvbuf> is called again, or memory corruption may result! Remember that
  203. the order of global destruction is undefined, so even if your buffer
  204. variable remains in scope until program termination, it may be undefined
  205. before the file IO::Handle is closed. Note that you need to import the
  206. constants C<_IOFBF>, C<_IOLBF>, and C<_IONBF> explicitly. Like C, setbuf
  207. returns nothing. setvbuf returns "0 but true", on success, C<undef> on
  208. failure.
  209.  
  210. Lastly, there is a special method for working under B<-T> and setuid/gid
  211. scripts:
  212.  
  213. =over 4
  214.  
  215. =item $io->untaint
  216.  
  217. Marks the object as taint-clean, and as such data read from it will also
  218. be considered taint-clean. Note that this is a very trusting action to
  219. take, and appropriate consideration for the data source and potential
  220. vulnerability should be kept in mind. Returns 0 on success, -1 if setting
  221. the taint-clean flag failed. (eg invalid handle)
  222.  
  223. =back
  224.  
  225. =head1 NOTE
  226.  
  227. An C<IO::Handle> object is a reference to a symbol/GLOB reference (see
  228. the C<Symbol> package).  Some modules that
  229. inherit from C<IO::Handle> may want to keep object related variables
  230. in the hash table part of the GLOB. In an attempt to prevent modules
  231. trampling on each other I propose the that any such module should prefix
  232. its variables with its own name separated by _'s. For example the IO::Socket
  233. module keeps a C<timeout> variable in 'io_socket_timeout'.
  234.  
  235. =head1 SEE ALSO
  236.  
  237. L<perlfunc>, 
  238. L<perlop/"I/O Operators">,
  239. L<IO::File>
  240.  
  241. =head1 BUGS
  242.  
  243. Due to backwards compatibility, all filehandles resemble objects
  244. of class C<IO::Handle>, or actually classes derived from that class.
  245. They actually aren't.  Which means you can't derive your own 
  246. class from C<IO::Handle> and inherit those methods.
  247.  
  248. =head1 HISTORY
  249.  
  250. Derived from FileHandle.pm by Graham Barr E<lt>F<gbarr@pobox.com>E<gt>
  251.  
  252. =cut
  253.  
  254. use 5.006_001;
  255. use strict;
  256. our($VERSION, @EXPORT_OK, @ISA);
  257. use Carp;
  258. use Symbol;
  259. use SelectSaver;
  260. use IO ();    # Load the XS module
  261.  
  262. require Exporter;
  263. @ISA = qw(Exporter);
  264.  
  265. $VERSION = "1.24";
  266. $VERSION = eval $VERSION;
  267.  
  268. @EXPORT_OK = qw(
  269.     autoflush
  270.     output_field_separator
  271.     output_record_separator
  272.     input_record_separator
  273.     input_line_number
  274.     format_page_number
  275.     format_lines_per_page
  276.     format_lines_left
  277.     format_name
  278.     format_top_name
  279.     format_line_break_characters
  280.     format_formfeed
  281.     format_write
  282.  
  283.     print
  284.     printf
  285.     getline
  286.     getlines
  287.  
  288.     printflush
  289.     flush
  290.  
  291.     SEEK_SET
  292.     SEEK_CUR
  293.     SEEK_END
  294.     _IOFBF
  295.     _IOLBF
  296.     _IONBF
  297. );
  298.  
  299. ################################################
  300. ## Constructors, destructors.
  301. ##
  302.  
  303. sub new {
  304.     my $class = ref($_[0]) || $_[0] || "IO::Handle";
  305.     @_ == 1 or croak "usage: new $class";
  306.     my $io = gensym;
  307.     bless $io, $class;
  308. }
  309.  
  310. sub new_from_fd {
  311.     my $class = ref($_[0]) || $_[0] || "IO::Handle";
  312.     @_ == 3 or croak "usage: new_from_fd $class FD, MODE";
  313.     my $io = gensym;
  314.     shift;
  315.     IO::Handle::fdopen($io, @_)
  316.     or return undef;
  317.     bless $io, $class;
  318. }
  319.  
  320. #
  321. # There is no need for DESTROY to do anything, because when the
  322. # last reference to an IO object is gone, Perl automatically
  323. # closes its associated files (if any).  However, to avoid any
  324. # attempts to autoload DESTROY, we here define it to do nothing.
  325. #
  326. sub DESTROY {}
  327.  
  328.  
  329. ################################################
  330. ## Open and close.
  331. ##
  332.  
  333. sub _open_mode_string {
  334.     my ($mode) = @_;
  335.     $mode =~ /^\+?(<|>>?)$/
  336.       or $mode =~ s/^r(\+?)$/$1</
  337.       or $mode =~ s/^w(\+?)$/$1>/
  338.       or $mode =~ s/^a(\+?)$/$1>>/
  339.       or croak "IO::Handle: bad open mode: $mode";
  340.     $mode;
  341. }
  342.  
  343. sub fdopen {
  344.     @_ == 3 or croak 'usage: $io->fdopen(FD, MODE)';
  345.     my ($io, $fd, $mode) = @_;
  346.     local(*GLOB);
  347.  
  348.     if (ref($fd) && "".$fd =~ /GLOB\(/o) {
  349.     # It's a glob reference; Alias it as we cannot get name of anon GLOBs
  350.     my $n = qualify(*GLOB);
  351.     *GLOB = *{*$fd};
  352.     $fd =  $n;
  353.     } elsif ($fd =~ m#^\d+$#) {
  354.     # It's an FD number; prefix with "=".
  355.     $fd = "=$fd";
  356.     }
  357.  
  358.     open($io, _open_mode_string($mode) . '&' . $fd)
  359.     ? $io : undef;
  360. }
  361.  
  362. sub close {
  363.     @_ == 1 or croak 'usage: $io->close()';
  364.     my($io) = @_;
  365.  
  366.     close($io);
  367. }
  368.  
  369. ################################################
  370. ## Normal I/O functions.
  371. ##
  372.  
  373. # flock
  374. # select
  375.  
  376. sub opened {
  377.     @_ == 1 or croak 'usage: $io->opened()';
  378.     defined fileno($_[0]);
  379. }
  380.  
  381. sub fileno {
  382.     @_ == 1 or croak 'usage: $io->fileno()';
  383.     fileno($_[0]);
  384. }
  385.  
  386. sub getc {
  387.     @_ == 1 or croak 'usage: $io->getc()';
  388.     getc($_[0]);
  389. }
  390.  
  391. sub eof {
  392.     @_ == 1 or croak 'usage: $io->eof()';
  393.     eof($_[0]);
  394. }
  395.  
  396. sub print {
  397.     @_ or croak 'usage: $io->print(ARGS)';
  398.     my $this = shift;
  399.     print $this @_;
  400. }
  401.  
  402. sub printf {
  403.     @_ >= 2 or croak 'usage: $io->printf(FMT,[ARGS])';
  404.     my $this = shift;
  405.     printf $this @_;
  406. }
  407.  
  408. sub getline {
  409.     @_ == 1 or croak 'usage: $io->getline()';
  410.     my $this = shift;
  411.     return scalar <$this>;
  412.  
  413. *gets = \&getline;  # deprecated
  414.  
  415. sub getlines {
  416.     @_ == 1 or croak 'usage: $io->getlines()';
  417.     wantarray or
  418.     croak 'Can\'t call $io->getlines in a scalar context, use $io->getline';
  419.     my $this = shift;
  420.     return <$this>;
  421. }
  422.  
  423. sub truncate {
  424.     @_ == 2 or croak 'usage: $io->truncate(LEN)';
  425.     truncate($_[0], $_[1]);
  426. }
  427.  
  428. sub read {
  429.     @_ == 3 || @_ == 4 or croak 'usage: $io->read(BUF, LEN [, OFFSET])';
  430.     read($_[0], $_[1], $_[2], $_[3] || 0);
  431. }
  432.  
  433. sub sysread {
  434.     @_ == 3 || @_ == 4 or croak 'usage: $io->sysread(BUF, LEN [, OFFSET])';
  435.     sysread($_[0], $_[1], $_[2], $_[3] || 0);
  436. }
  437.  
  438. sub write {
  439.     @_ >= 2 && @_ <= 4 or croak 'usage: $io->write(BUF [, LEN [, OFFSET]])';
  440.     local($\) = "";
  441.     $_[2] = length($_[1]) unless defined $_[2];
  442.     print { $_[0] } substr($_[1], $_[3] || 0, $_[2]);
  443. }
  444.  
  445. sub syswrite {
  446.     @_ >= 2 && @_ <= 4 or croak 'usage: $io->syswrite(BUF [, LEN [, OFFSET]])';
  447.     if (defined($_[2])) {
  448.     syswrite($_[0], $_[1], $_[2], $_[3] || 0);
  449.     } else {
  450.     syswrite($_[0], $_[1]);
  451.     }
  452. }
  453.  
  454. sub stat {
  455.     @_ == 1 or croak 'usage: $io->stat()';
  456.     stat($_[0]);
  457. }
  458.  
  459. ################################################
  460. ## State modification functions.
  461. ##
  462.  
  463. sub autoflush {
  464.     my $old = new SelectSaver qualify($_[0], caller);
  465.     my $prev = $|;
  466.     $| = @_ > 1 ? $_[1] : 1;
  467.     $prev;
  468. }
  469.  
  470. sub output_field_separator {
  471.     carp "output_field_separator is not supported on a per-handle basis"
  472.     if ref($_[0]);
  473.     my $prev = $,;
  474.     $, = $_[1] if @_ > 1;
  475.     $prev;
  476. }
  477.  
  478. sub output_record_separator {
  479.     carp "output_record_separator is not supported on a per-handle basis"
  480.     if ref($_[0]);
  481.     my $prev = $\;
  482.     $\ = $_[1] if @_ > 1;
  483.     $prev;
  484. }
  485.  
  486. sub input_record_separator {
  487.     carp "input_record_separator is not supported on a per-handle basis"
  488.     if ref($_[0]);
  489.     my $prev = $/;
  490.     $/ = $_[1] if @_ > 1;
  491.     $prev;
  492. }
  493.  
  494. sub input_line_number {
  495.     local $.;
  496.     () = tell qualify($_[0], caller) if ref($_[0]);
  497.     my $prev = $.;
  498.     $. = $_[1] if @_ > 1;
  499.     $prev;
  500. }
  501.  
  502. sub format_page_number {
  503.     my $old;
  504.     $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  505.     my $prev = $%;
  506.     $% = $_[1] if @_ > 1;
  507.     $prev;
  508. }
  509.  
  510. sub format_lines_per_page {
  511.     my $old;
  512.     $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  513.     my $prev = $=;
  514.     $= = $_[1] if @_ > 1;
  515.     $prev;
  516. }
  517.  
  518. sub format_lines_left {
  519.     my $old;
  520.     $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  521.     my $prev = $-;
  522.     $- = $_[1] if @_ > 1;
  523.     $prev;
  524. }
  525.  
  526. sub format_name {
  527.     my $old;
  528.     $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  529.     my $prev = $~;
  530.     $~ = qualify($_[1], caller) if @_ > 1;
  531.     $prev;
  532. }
  533.  
  534. sub format_top_name {
  535.     my $old;
  536.     $old = new SelectSaver qualify($_[0], caller) if ref($_[0]);
  537.     my $prev = $^;
  538.     $^ = qualify($_[1], caller) if @_ > 1;
  539.     $prev;
  540. }
  541.  
  542. sub format_line_break_characters {
  543.     carp "format_line_break_characters is not supported on a per-handle basis"
  544.     if ref($_[0]);
  545.     my $prev = $:;
  546.     $: = $_[1] if @_ > 1;
  547.     $prev;
  548. }
  549.  
  550. sub format_formfeed {
  551.     carp "format_formfeed is not supported on a per-handle basis"
  552.     if ref($_[0]);
  553.     my $prev = $^L;
  554.     $^L = $_[1] if @_ > 1;
  555.     $prev;
  556. }
  557.  
  558. sub formline {
  559.     my $io = shift;
  560.     my $picture = shift;
  561.     local($^A) = $^A;
  562.     local($\) = "";
  563.     formline($picture, @_);
  564.     print $io $^A;
  565. }
  566.  
  567. sub format_write {
  568.     @_ < 3 || croak 'usage: $io->write( [FORMAT_NAME] )';
  569.     if (@_ == 2) {
  570.     my ($io, $fmt) = @_;
  571.     my $oldfmt = $io->format_name($fmt);
  572.     CORE::write($io);
  573.     $io->format_name($oldfmt);
  574.     } else {
  575.     CORE::write($_[0]);
  576.     }
  577. }
  578.  
  579. # XXX undocumented
  580. sub fcntl {
  581.     @_ == 3 || croak 'usage: $io->fcntl( OP, VALUE );';
  582.     my ($io, $op) = @_;
  583.     return fcntl($io, $op, $_[2]);
  584. }
  585.  
  586. # XXX undocumented
  587. sub ioctl {
  588.     @_ == 3 || croak 'usage: $io->ioctl( OP, VALUE );';
  589.     my ($io, $op) = @_;
  590.     return ioctl($io, $op, $_[2]);
  591. }
  592.  
  593. # this sub is for compatability with older releases of IO that used
  594. # a sub called constant to detemine if a constant existed -- GMB
  595. #
  596. # The SEEK_* and _IO?BF constants were the only constants at that time
  597. # any new code should just chech defined(&CONSTANT_NAME)
  598.  
  599. sub constant {
  600.     no strict 'refs';
  601.     my $name = shift;
  602.     (($name =~ /^(SEEK_(SET|CUR|END)|_IO[FLN]BF)$/) && defined &{$name})
  603.     ? &{$name}() : undef;
  604. }
  605.  
  606.  
  607. # so that flush.pl can be deprecated
  608.  
  609. sub printflush {
  610.     my $io = shift;
  611.     my $old;
  612.     $old = new SelectSaver qualify($io, caller) if ref($io);
  613.     local $| = 1;
  614.     if(ref($io)) {
  615.         print $io @_;
  616.     }
  617.     else {
  618.     print @_;
  619.     }
  620. }
  621.  
  622. 1;
  623.